a {
    text-decoration: none;
}

.ul-textos {
    list-style: none;
    padding: 0;
    font-size: 14px;
    margin: 5px 0;
}

.contenedor-principal {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_expo {
    background: url(../../../public/images/cdmx2024/inicio/footer/footer_desk.svg) no-repeat;
    background-size: cover;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.h4-responsive {
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
}

.text-white {
    margin-bottom: 17px;
    font-size: 14px;
}

.contenedor-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 38px;
    margin-bottom: 40px;
}

.conten_datoscont {
    margin-right: 40px;
}

.lista-redes {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    max-width: 160px;
}

@media (min-width: 1920px) {
    .h4-responsive {
        font-size: 26px;
    }

    .text-white,
    .ul-textos {
        font-size: 20px;
    }

}

@media (max-width: 1440px) {
    .contenedor-footer {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        margin-bottom: 0;
    }

    .ul-textos {
        margin-bottom: 40px;
    }

    .conten_datoscont {
        margin-right: 0px;
    }
}

@media (max-width: 1220px) {
    .contenedor-footer {
        grid-template-columns: repeat(4, 1fr);
    }

    .conten_datoscont {
        margin-right: 40px;
    }
}

@media (max-width: 992px) {
    .contenedor-footer {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 17px;
    }

    .h4-responsive {
        font-size: 26px;
    }

    .ul-textos {
        font-size: 20px;
        margin: 16px 0 40px 0;
    }

    .text-white {
        font-size: 20px;
    }

    .conten_datoscont {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .footer_expo {
        background: url(../../../public/images/cdmx2024/inicio/footer/footer_movil.svg) no-repeat;
        background-size: cover;
        height: auto;
        display: flex;
    }

    .contenedor-footer {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 30px;
    }

    *+ul {
        margin-top: 17px;
    }
}

@media (max-width: 640px) {
    .footer_expo {
        background: url(../../../public/images/cdmx2024/inicio/footer/footer_xs.svg) no-repeat;
        background-size: cover;
        height: auto;
        display: flex;
    }

    .contenedor-footer {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lista-redes {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        max-width: 400px;
    }

    *+ul {
        margin-top: 17px;
    }
}

.icono-correo,
.icono-email {
    background-color: white;
    color: #00548E;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.icono-email {
    width: 25px;
    height: 25px;
    margin-left: 20px;
}

.correo-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding-bottom: 1px;
    transition: 0.5s ease;
}

.correo-link:hover {
    padding: 0;
    border-color: white;
    color: white;
    text-decoration: none;
}

.social a:hover {
    color: #DEA601 !important;
    text-decoration: none;
}

.icono-correo:hover {
    background-color: #00548E;
    color: white;
}

/* Texto en iconos para mejorar la accesibilidad */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --------- Botón finalizar --------- */
.box-footer {
    display: flex;
    justify-content: center;
}

.btn-20,
.btn-20 *,
.btn-20 :after,
.btn-20 :before,
.btn-20:after,
.btn-20:before {
    border: 0 solid;
    box-sizing: border-box;
}

.btn-20 {
    -webkit-tap-highlight-color: transparent;
    background-color: #F07F1E;
    background-image: none;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    margin: 0;
    padding: 0;
    width: 380px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-20:disabled {
    cursor: default;
}

.btn-20:-moz-focusring {
    outline: auto;
}

.btn-20 [hidden] {
    display: none;
}

.btn-20 {
    border-radius: 99rem;
    border-width: 2px;
    overflow: hidden;
    padding: 0.8rem 3rem;
    position: relative;
}

.btn-20 span {
    mix-blend-mode: color-dodge;
}

.btn-20:before {
    background: var(--degradado-marino-claro-medex, linear-gradient(90deg, #03547E 0%, #01558C 51%, #0699D6 100%));
    content: "";
    display: block;
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transform: skew(0deg) translateX(-20%);
    transition: transform 0.2s ease;
    width: 120%;
}

.btn-20:hover:before {
    transform: skew(-45deg) translateX(75%);
}